Clicking on a dot opens the run log.
Sys.time()
#> [1] "2022-07-14 11:40:13 UTC"
gh::gh_rate_limit()
#> $limit
#> [1] 1000
#>
#> $remaining
#> [1] 755
#>
#> $reset
#> [1] "2022-07-14 12:38:58 UTC"
print(messages)
#> [1] "Running on CI, disabling cache"
#> [2] "[01/27] Making API calls for module jaspDescriptives..."
#> [3] "[02/27] Making API calls for module jaspTTests..."
#> [4] "[03/27] Making API calls for module jaspAnova..."
#> [5] "[04/27] Making API calls for module jaspMixedModels..."
#> [6] "[05/27] Making API calls for module jaspRegression..."
#> [7] "[06/27] Making API calls for module jaspFrequencies..."
#> [8] "[07/27] Making API calls for module jaspFactor..."
#> [9] "[08/27] Making API calls for module jaspAudit..."
#> [10] "[09/27] Making API calls for module jaspBain..."
#> [11] "[10/27] Making API calls for module jaspBsts..."
#> [12] "[11/27] Making API calls for module jaspCircular..."
#> [13] "[12/27] Making API calls for module jaspCochrane..."
#> [14] "[13/27] Making API calls for module jaspDistributions..."
#> [15] "[14/27] Making API calls for module jaspEquivalenceTTests..."
#> [16] "[15/27] Making API calls for module jaspJags..."
#> [17] "[16/27] Making API calls for module jaspLearnBayes..."
#> [18] "[17/27] Making API calls for module jaspLearnStats..."
#> [19] "[18/27] Making API calls for module jaspMachineLearning..."
#> [20] "[19/27] Making API calls for module jaspMetaAnalysis..."
#> [21] "[20/27] Making API calls for module jaspNetwork..."
#> [22] "[21/27] Making API calls for module jaspProcessControl..."
#> [23] "[22/27] Making API calls for module jaspProphet..."
#> [24] "[23/27] Making API calls for module jaspReliability..."
#> [25] "[24/27] Making API calls for module jaspSem..."
#> [26] "[25/27] Making API calls for module jaspSummaryStatistics..."
#> [27] "[26/27] Making API calls for module jaspTimeSeries..."
#> [28] "[27/27] Making API calls for module jaspVisualModeling..."
print(repos_successful)
#> [1] "jaspDescriptives" "jaspTTests" "jaspAnova"
#> [4] "jaspMixedModels" "jaspRegression" "jaspFrequencies"
#> [7] "jaspFactor" "jaspAudit" "jaspBsts"
#> [10] "jaspCircular" "jaspCochrane" "jaspDistributions"
#> [13] "jaspEquivalenceTTests" "jaspJags" "jaspLearnBayes"
#> [16] "jaspMachineLearning" "jaspMetaAnalysis" "jaspNetwork"
#> [19] "jaspProcessControl" "jaspProphet" "jaspReliability"
#> [22] "jaspSem" "jaspSummaryStatistics"
repos_failed <- setdiff(repos, repos_successful)
print(repos_failed)
#> [1] "jaspBain" "jaspLearnStats" "jaspTimeSeries"
#> [4] "jaspVisualModeling"